From: Jeroen van der Heijden Date: Fri, 19 Oct 2018 11:40:11 +0000 (+0200) Subject: Fix logging name X-Git-Tag: archive/raspbian/2.0.44-1+rpi1~1^2~3^2~7^2~9 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=c867e545ef358ae0339e3258785d5a174d444858;p=siridb-server.git Fix logging name --- diff --git a/src/siri/net/stream.c b/src/siri/net/stream.c index 10e151cc..30f1d293 100644 --- a/src/siri/net/stream.c +++ b/src/siri/net/stream.c @@ -91,9 +91,9 @@ char * sirinet_stream_name(sirinet_stream_t * client) case STREAM_TCP_BACKEND: case STREAM_TCP_SERVER: case STREAM_TCP_MANAGE: - return sirinet_pipe_name((uv_pipe_t *) client->stream); - case STREAM_PIPE_CLIENT: return sirinet_tcp_name((uv_tcp_t *) client->stream); + case STREAM_PIPE_CLIENT: + return sirinet_pipe_name((uv_pipe_t *) client->stream); } return NULL; }